ActorPlugin.js ➔ ???   A
last analyzed

Complexity

Conditions 1
Paths 0

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
nc 0
nop 0
dl 0
loc 3
rs 10
1
"use strict";
2
3
const Plugin = require('./Plugin');
4
5
/**
6
 * Represent the leprechaun responsible of doing an action
7
 */
8
class ActorPlugin extends Plugin {
9
    act() {
10
        throw new Error("ActorPlugin::act() must be overridden !");
11
    }
12
}
13
14
module.exports = ActorPlugin;
15